Content & Deliverables

Project 1 - Capstone Deliverables

This is a sample page where you can archive project deliverables. Every header you use will correspond to a tab in the legend - shown on the right-hand side of your screen (“On this page”).

If you’ve produced any GIS layers for your 599 project, this may be a good place to share them as interactive maps through leaflet. Alternatively, you can upload high-res figures showing correlations, box-plots, etc. from your report here, and provide a brief overview of key project results. If you have written some useful functions, you may also want to share those here to demonstrate proficiency in particular coding languages or synergies between notable coding packages.

Leaflet

Sample leaflet - for detailed leaflet instructions, visit the FCOR 599 workshop archive page here.

Code Snippets

Sample code snippet. Notice that you can provide a toggle to switch between coding languages - this is referred to as a ‘tabset’ in quarto. It is good practice to try and convert your R code to python, and vice-versa to demonstrate coding proficiency. For example, let’s showcase a function for calculating NDVI in R and Python.

calc_ndvi <- function(nir, red){ ndvi <- (nir-red)/(nir+red) return(ndvi) }
def calc_ndvi(nir, red): 
  ndvi = (nir.astype(float)-red.astype(float))/(nir.astype(float)+red.astype(float))
  return(ndvi)

3D Plot

Chunk 1 of 1 (100%): state ✓
Reading layer `building_polygons' from data source 
  `C:\Users\mlefcoe.stu\OneDrive - UBC\Documents\FCOR599\Shade Mapping\building_polygons.shp' 
  using driver `ESRI Shapefile'
Simple feature collection with 434 features and 36 fields
Geometry type: MULTIPOLYGON
Dimension:     XY
Bounding box:  xmin: 480978.5 ymin: 5454527 xmax: 483414.8 ymax: 5457826
Projected CRS: NAD83 / UTM zone 10N
Warning: attribute variables are assumed to be spatially constant throughout
all geometries